10 lines
78 B
Docker
10 lines
78 B
Docker
FROM node:14
|
|
|
|
WORKDIR /usr/src/frontend
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
|
|
EXPOSE 3000
|
|
|