Compare commits

...

6 Commits

Author SHA1 Message Date
c154ccc0f6 Merge pull request 'bukopin' (#1) from bukopin into devops-staging
Reviewed-on: #1
2023-01-18 11:50:37 +07:00
“marselinowidis”
b2a0cc9cdc fix dockerfile 2023-01-17 23:59:19 +07:00
“marselinowidis”
0a482dd766 fix dockerfile 2023-01-17 23:41:42 +07:00
“marselinowidis”
8a8d7c0e74 fix dockerfile 2023-01-17 23:40:55 +07:00
“marselinowidis”
8c02184bd9 fix dockerfile 2023-01-17 23:33:25 +07:00
“marselinowidis”
07634ef503 fix dockerfile 2023-01-17 23:28:01 +07:00

View File

@@ -1,7 +1,9 @@
FROM node:8-alpine
RUN apk add --no-cache libc6-compat
RUN apk add git && yarn
WORKDIR /app
COPY package.json /app
RUN yarn
RUN yarn install --frozen-lockfile
COPY . /app
CMD npm run watch
EXPOSE 8080