mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-22 17:10:26 +03:00
12 lines
527 B
Docker
12 lines
527 B
Docker
FROM node:16.13-alpine as node
|
|
COPY . /shlink-web-client
|
|
ARG VERSION="latest"
|
|
ENV VERSION ${VERSION}
|
|
RUN cd /shlink-web-client && npm ci && npm run build
|
|
|
|
FROM nginx:1.21-alpine
|
|
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
|
|
RUN rm -r /usr/share/nginx/html && rm /etc/nginx/conf.d/default.conf
|
|
COPY config/docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY scripts/docker/servers_from_env.sh /docker-entrypoint.d/30-shlink-servers-json.sh
|
|
COPY --from=node /shlink-web-client/build /usr/share/nginx/html
|