mirror of
https://github.com/lucaspalomodevelop/JSSTE_APP.git
synced 2026-03-13 08:09:38 +00:00
8 lines
114 B
Plaintext
8 lines
114 B
Plaintext
FROM node:16
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm run install-full
|
|
RUN npm run build
|
|
EXPOSE 8081
|
|
CMD ["npm", "start"]
|