dragggl25 commited on
Commit
2b6cd02
·
verified ·
1 Parent(s): 309acee

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,9 +1,9 @@
1
  FROM denoland/deno:latest
2
 
3
- RUN apt-get update && apt-get install -y git
4
-
5
  WORKDIR /app
6
 
 
 
7
  RUN deno cache --node-modules-dir main.ts
8
 
9
  EXPOSE 8000
 
1
  FROM denoland/deno:latest
2
 
 
 
3
  WORKDIR /app
4
 
5
+ COPY . .
6
+
7
  RUN deno cache --node-modules-dir main.ts
8
 
9
  EXPOSE 8000