mirror of
https://github.com/docker/getting-started-app.git
synced 2024-12-22 15:20:51 -05:00
7 lines
107 B
Docker
7 lines
107 B
Docker
FROM node:lts-alphine
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN yarn install --production
|
|
EXPOSE 7000
|
|
CMD['node','app.js']
|