748b329514
* Bump to stackage LTS 19.2 for network >= 3.1.2 * Support network >= 3.1.2 * Disable docker login on forked repositories. * Update dockerfile. Former-commit-id: 34645524c3221a596fb59e8dbad4381f10f93933 Former-commit-id: bcc40487b5cc36af72bcccfabb77fc2fe3933377 [formerly 36e5a23cc5f50719fbc334741e41101527e44a32] [formerly 35b7f5ad0096ba3e1ba2b3946e9eb46d17b477c5 [formerly c1e83ef29175f48c1bc199405670ac70a85d7bfa [formerly c3d180e0a066c83db261f296055e0fc6485f85cd] [formerly 29ca68bf69f44df5770d665f1997fce6afe8c6a9] [formerly 29ca68bf69f44df5770d665f1997fce6afe8c6a9 [formerly 29ca68bf69f44df5770d665f1997fce6afe8c6a9 [formerly dd31ffea070f0cccf6fb8064ea6f445a2d8b3d7c]]]]] Former-commit-id: d9e2f84d44728723b9ddcbad5ae1d088fdf574b2 [formerly ccdba4b1ec6a29b032c7696f8d6893940f44c25c] Former-commit-id: 10137d6047496f188dc4d29f31ab21452aedb7ad Former-commit-id: 0549973a0980949a8743f6cac6ea5f265ccdd583 Former-commit-id: 061811becd00ed2022ed1c6c35c7aee484dccdf6 Former-commit-id: 20ac5d98e082c67e650a6bcf63d380ba08973ade [formerly 2ce99e6abc267a2f1db82ee0ed3f5ce762ecabb2] Former-commit-id: b1be9c6813f3c3f1a9ffa8cd3915954cbc902723
37 lines
775 B
Docker
37 lines
775 B
Docker
# Build Cache image
|
|
FROM fpco/stack-build-small:lts-19.2 as builder-cache
|
|
|
|
COPY stack.yaml /mnt
|
|
COPY *.cabal /mnt
|
|
WORKDIR /mnt
|
|
RUN rm -rf ~/.stack && \
|
|
stack config set system-ghc --global true && \
|
|
stack setup && \
|
|
stack install --ghc-options="-fPIC" --only-dependencies
|
|
|
|
|
|
|
|
# Build phase
|
|
FROM builder-cache as builder
|
|
# FROM ghcr.io/erebe/wstunnel:build-cache as builder
|
|
COPY . /mnt
|
|
|
|
RUN echo ' ld-options: -static' >> wstunnel.cabal ; \
|
|
stack install --ghc-options="-fPIC"
|
|
#RUN upx /root/.local/bin/wstunnel
|
|
|
|
|
|
|
|
# Final Image
|
|
FROM alpine:latest as runner
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/erebe/server
|
|
|
|
COPY --from=builder /root/.local/bin/wstunnel /
|
|
RUN adduser -D abc && chmod +x /wstunnel
|
|
|
|
USER abc
|
|
WORKDIR /
|
|
|
|
CMD ["/wstunnel"]
|
|
|