Jack698 commited on
Commit
610751a
·
verified ·
1 Parent(s): 268b9ed

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -12
Dockerfile CHANGED
@@ -1,13 +1,13 @@
1
- FROM node:16-alpine
2
-
3
- WORKDIR /app
4
-
5
- RUN apk add --no-cache git && \
6
- git clone https://github.com/koodo-reader/koodo-reader.git . && \
7
- apk del git
8
-
9
- RUN yarn install
10
-
11
- EXPOSE 3000
12
-
13
  CMD ["yarn", "start"]
 
1
+ FROM node:20-alpine
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apk add --no-cache git && \
6
+ git clone https://github.com/koodo-reader/koodo-reader.git . && \
7
+ apk del git
8
+
9
+ RUN yarn install
10
+
11
+ EXPOSE 3000
12
+
13
  CMD ["yarn", "start"]