mirror of
https://github.com/lucaspalomodevelop/JSSTE_APP.git
synced 2026-03-13 00:07:22 +00:00
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
FROM node:18
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
WORKDIR /app/dashboard
|
|
RUN npm install
|
|
RUN npm run build
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
CMD ["npm", "start"] |