mirror of
https://github.com/docker/getting-started-app.git
synced 2025-03-10 11:54:49 -04: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']
|