mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-15 14:24:39 +00:00
13 lines
243 B
Docker
13 lines
243 B
Docker
FROM node:10 as stage-build
|
|
ARG VERSION
|
|
ENV VERSION=$VERSION
|
|
|
|
WORKDIR /data
|
|
ADD . /data
|
|
RUN cd utils && bash -ix build.sh
|
|
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=stage-build /data/release/lina /opt/lina/
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|