Files
my-website-v2/frontend/Dockerfile
Wyatt J. Miller 79cc4caa58 added dockerfiles
for building the stuff
2025-07-19 00:44:28 -04:00

18 lines
210 B
Docker

FROM denoland/deno:alpine
RUN apk add bash
# USER deno
RUN deno cache --reload deno.json
COPY . .
RUN bash -c 'deno cache main.ts'
RUN bash -c 'deno task build'
EXPOSE 8000
CMD ['run', '-A', 'main.ts']