Final commit
This commit is contained in:
parent
91fffb3294
commit
c35e0716af
372 changed files with 16591 additions and 1 deletions
13
backend/Dockerfile
Normal file
13
backend/Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM denoland/deno:latest
|
||||
|
||||
# Create working directory
|
||||
WORKDIR /app
|
||||
|
||||
# Copy source
|
||||
COPY backend/ .
|
||||
|
||||
# Compile the main app
|
||||
RUN deno cache main.ts
|
||||
|
||||
# Run the app
|
||||
CMD ["deno", "run", "--allow-net", "--allow-env", "main.ts"]
|
Loading…
Add table
Add a link
Reference in a new issue