mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-04 11:44:37 +00:00
38 lines
821 B
Docker
38 lines
821 B
Docker
FROM node:19.0.0-alpine3.16 AS builder
|
|
|
|
# create user, group and home directory
|
|
RUN mkdir -p /home/app
|
|
RUN addgroup -S app && adduser -S app -G app
|
|
WORKDIR /home/app
|
|
|
|
# install GCC
|
|
RUN apk add build-base
|
|
|
|
# install Python
|
|
ENV PYTHONUNBUFFERED=1
|
|
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
|
|
RUN python3 -m ensurepip
|
|
RUN pip3 install --no-cache --upgrade pip setuptools
|
|
|
|
USER app
|
|
|
|
# install dependencies
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
RUN npm install
|
|
|
|
# build app
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.23.2-alpine AS runner
|
|
|
|
# setup nginx
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
RUN addgroup -S www && adduser -S www -G www
|
|
|
|
# copy build files
|
|
COPY --from=builder /home/app/dist /home/www/dist
|
|
RUN chown -R www:www /home/www/dist
|