fgdgfgfdgdf / Dockerfile
b082f689-ebc3-413d-b1f2-27bd1e86dca7's picture
Upload 8 files
4bc5b9b verified
raw
history blame contribute delete
272 Bytes
FROM denoland/deno:latest
EXPOSE 7860
WORKDIR /app
# Prefer not to run as root.
USER deno
RUN deno install
COPY . .
# Compile the main app so that it doesn't need to be compiled each startup/entry.
RUN deno cache src/main.tsx
CMD ["task", "start"]