16 lines
236 B
Docker
Raw Normal View History

2023-04-08 16:08:49 +05:00
FROM node:18.15.0-alpine3.17
# Set build shell to bash, default has has some issues sometimes
#SHELL ["/bin/bash", "-c"]
WORKDIR /root
COPY . .
RUN yarn install \
&& yarn build \
&& rm -rf /usr/local/share/.cache
2023-04-08 16:08:49 +05:00
CMD yarn start