14 lines
221 B
Text
14 lines
221 B
Text
![]() |
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"]
|