Spaces:
Sleeping
Sleeping
File size: 282 Bytes
286b742 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM node:18-bullseye-slim
RUN apt-get update && \
apt-get install -y git
RUN git clone https://gitgud.io/thunderstone/progy.git /app
WORKDIR /app
RUN npm install
COPY Dockerfile greeting.md* .env* ./
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
CMD [ "npm", "start" ]
|