Jack698 commited on
Commit
e77dd46
·
verified ·
1 Parent(s): 6162f91

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -8
Dockerfile CHANGED
@@ -1,12 +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
- && yarn install \
8
- && apk del git
9
 
10
- EXPOSE 3000
 
 
 
 
11
 
12
- CMD ["yarn", "start"]
 
1
  FROM node:20-alpine
 
 
2
 
3
+ WORKDIR /app
4
+ ENV PYTHON=python3
 
 
5
 
6
+ RUN apk add --no-cache git python3 make g++ \
7
+ && apk del git make g++ \
8
+ && rm -rf /root/.cache /tmp/*
9
+
10
+ EXPOSE 3000
11
 
12
+ CMD ["yarn", "start"]