Skip to content

Commit

Permalink
feat: containerize
Browse files Browse the repository at this point in the history
are containers huge boxes?

... can i get one 🥺
  • Loading branch information
amycatgirl committed May 14, 2024
1 parent 38513fc commit c72cd5c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
justfile
README.md
.gitignore
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM denoland/deno:alpine

RUN mkdir -p /www/tempstore

WORKDIR /www/tempstore
ADD . /www/tempstore/

EXPOSE 5544

CMD [ "deno", "task", "start" ]

0 comments on commit c72cd5c

Please sign in to comment.