mirror of
https://github.com/uditkarode/bing-chat-telegram.git
synced 2025-11-01 17:27:04 +00:00
added docker support
This commit is contained in:
16
.build/Dockerfile
Normal file
16
.build/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
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 \
|
||||
&& rm -rf /usr/local/share/.cache
|
||||
|
||||
#&& yarn build
|
||||
|
||||
CMD yarn build && yarn start
|
||||
Reference in New Issue
Block a user