mirror of
https://github.com/uditkarode/bing-chat-telegram.git
synced 2025-02-22 17:22:13 +00:00
16 lines
236 B
Docker
16 lines
236 B
Docker
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
|
|
|
|
CMD yarn start
|