This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/shopping-lists/Dockerfile
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

11 lines
203 B
Docker

FROM denoland/deno:alpine-1.26.2
EXPOSE 7777
WORKDIR /app
COPY . .
RUN deno cache deps.js
CMD [ "run", "--unstable", "--watch", "--allow-net", "--allow-read", "--allow-env", "--no-check", "app.js" ]