Files
Geradores/geradoresfe/Dockerfile
2024-07-28 19:21:51 +01:00

8 lines
155 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
ENV REACT_APP_API_URL=http://localhost:5015/
EXPOSE 3000
CMD ["npm", "start"]