Roblox / Dockerfile
Ivyblue's picture
Create Dockerfile
0567779
raw
history blame contribute delete
282 Bytes
FROM node:18-bullseye-slim
RUN apt-get update && \
apt-get install -y git
RUN git clone https://www.janitorai.com/chats/32379125
WORKDIR /app
RUN npm install
COPY Dockerfile greeting.md* .env* ./
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
CMD [ "npm", "start" ]