0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/site/Dockerfile

20 lines
313 B
Docker
Raw Normal View History

2019-06-07 11:05:15 +02:00
FROM mhart/alpine-node:12
2019-04-21 22:33:31 +02:00
# install dependencies
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --production
2019-04-21 22:33:31 +02:00
###
# Only copy over the Node pieces we need
# ~> Saves 35MB
###
2019-06-07 11:05:15 +02:00
FROM mhart/alpine-node:slim-12
2019-04-21 22:33:31 +02:00
WORKDIR /app
COPY --from=0 /app .
COPY . .
2019-04-21 22:33:31 +02:00
EXPOSE 3000
CMD ["node", "__sapper__/build"]