Newer
Older
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ENV CLI_WIDTH 80
RUN git clone https://github.com/LibrePhotos/librephotos-frontend /usr/src/app
FROM halverneus/static-file-server
ENV PORT 3000
EXPOSE 3000
COPY --from=builder /usr/src/app/build /web
ENTRYPOINT ["/serve"]
CMD []