mirror of
https://github.com/acid-info/peripatos.free.technology.git
synced 2025-01-11 16:14:28 +00:00
17 lines
422 B
Docker
17 lines
422 B
Docker
FROM node:lts-alpine as dependencies
|
|
WORKDIR /app
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn install --frozen-lockfile
|
|
|
|
FROM node:lts-alpine as builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
COPY --from=dependencies /app/node_modules ./node_modules
|
|
RUN yarn build
|
|
|
|
FROM lipanski/docker-static-website:latest
|
|
COPY --from=builder /app/dist .
|
|
COPY httpd.conf .
|
|
EXPOSE 3000
|
|
CMD ["/busybox", "httpd", "-f", "-v", "-p", "3000", "-c", "httpd.conf"]
|