auto-ai / Dockerfile
z
Create Dockerfile
0348850
raw
history blame contribute delete
305 Bytes
FROM node:19.1.0-alpine3.16
# RUN unlink /etc/localtime && ln -s /usr/share/zoneinfo/Etc/GMT-8 /etc/localtime
RUN apk add curl
# && curl ipinfo.io
WORKDIR /app
ADD . /app
RUN mv .env.example .env && chmod -R 777 ".env"
RUN chmod +x "./linux-exec" && \
chmod +x "./entrypoint.sh"
CMD ["./entrypoint.sh"]