fix: update node version

This commit is contained in:
Gabriel Almeida 2023-03-17 09:50:38 -03:00
commit b2a447f055

View file

@ -0,0 +1,6 @@
FROM node:19-alpine as frontend_build
ARG BACKEND
WORKDIR /app
COPY . /app
RUN npm install
CMD ["npm", "start"]