dockerfiles/vlang/Dockerfile

49 lines
1.4 KiB
Docker

FROM alpine:3.16
ARG TARGETPLATFORM
# Values for release 0.3.1
ARG V_COMMIT_HASH=f2f6ea596966ca405bd1be34b3bf3539b0c18fb7
ARG VC_COMMIT_HASH=119e6752e94814715dbb926d438027a848d5be2c
ENV VVV /opt/vlang
ENV PATH /opt/vlang:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV VFLAGS -cc gcc -gc none
RUN apk --no-cache add \
git make gcc curl musl-dev \
openssl openssl-libs-static openssl-dev \
zlib-static bzip2-static xz-dev expat-static zstd-static lz4-static \
sqlite-static sqlite-dev \
libarchive-static libarchive-dev \
diffutils \
mandoc unzip
WORKDIR /opt
RUN curl -Lo v.zip "https://github.com/vlang/v/archive/${V_COMMIT_HASH}.zip" && \
unzip v.zip && \
rm v.zip && \
mv "v-${V_COMMIT_HASH}" vlang
WORKDIR /opt/vlang
# We use zip instead of git for the vc repository here because cloning it
# requires pulling down over 600MB of Git history.
RUN curl -Lo vc.zip "https://github.com/vlang/vc/archive/${VC_COMMIT_HASH}.zip" && \
unzip vc.zip && \
rm vc.zip && \
mv "vc-${VC_COMMIT_HASH}" vc && \
make fresh_tcc && \
make local=1 prod=1 && \
ln -s /opt/vlang/v /usr/bin/v
# This is used to upload the resulting static binaries to my Minio instance.
# There are however only builds available for amd64.
RUN if [ "$TARGETPLATFORM" = 'linux/amd64' ]; then \
wget -O /usr/local/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc && \
chmod +x /usr/local/bin/mc ; \
fi
CMD ["v"]