5 lines
77 B
Docker
5 lines
77 B
Docker
FROM node:18-alpine
|
|
EXPOSE 8080
|
|
COPY . .
|
|
RUN npm install
|
|
CMD ["npm", "start"] |