express-nodejs-app/Dockerfile
Sambo Chea 1dfad5d122
All checks were successful
continuous-integration/drone/push Build is passing
Task: Fixed and changed to yarn script in Dockerfile
2021-09-15 08:36:12 +07:00

22 lines
532 B
Docker

FROM cubetiq/calpine-node:latest
LABEL maintainer="sombochea@cubetiqs.com"
RUN echo "Starting setting up timezone to ${TIMEZ}..."
ENV TIMEZ=Asia/Phnom_Penh
# For Alpine
# Setup Timezone
RUN apk update && \
apk add --no-cache tzdata && \
cp /usr/share/zoneinfo/${TIMEZ} /etc/localtime && \
echo ${TIMEZ} > /etc/timezone
WORKDIR /app
COPY . /app
RUN yarn config set registry https://r.ctdn.net
RUN cd packages/ts-common && yarn && yarn build
RUN cd ../../ && yarn
RUN yarn build
EXPOSE 3000
CMD [ "yarn" , "serve"]