Jack698 commited on
Commit
31de806
·
verified ·
1 Parent(s): 610751a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -13
Dockerfile CHANGED
@@ -1,13 +1,12 @@
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"]
 
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
+ && yarn install \
8
+ && apk del git
9
+
10
+ EXPOSE 3000
11
+
12
+ CMD ["yarn", "start"]