Skip to content

Commit

Permalink
Merge pull request #31 from sammcj/patch-1
Browse files Browse the repository at this point in the history
Add Dockerfile
  • Loading branch information
miurla authored Apr 14, 2024
2 parents ea52e26 + 2b13cf1 commit a9a47f1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM oven/bun:1.1.3-alpine

RUN apk add --no-cache nodejs npm git

RUN git clone --depth=1 https://github.com/miurla/morphic /app && \
rm -rf /app/.git && \
cd /app && \
bun i && \
bun next telemetry disable

WORKDIR /app

CMD ["bun", "dev"]

0 comments on commit a9a47f1

Please sign in to comment.