16 lines
231 B
Docker
Raw Normal View History

2023-05-05 13:42:33 +05:30
FROM node:20-alpine3.16
2023-04-08 16:08:49 +05:00
# 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