nodes/store/Dockerfile

14 lines
183 B
Docker
Raw Normal View History

2024-12-19 23:55:07 +01:00
FROM denoland/deno:alpine
ARG GIT_REVISION
ENV DENO_DEPLOYMENT_ID=${GIT_REVISION}
WORKDIR /app
COPY . .
RUN deno cache main.ts && deno task build
EXPOSE 8000
CMD ["task", "run"]