Initial commit

This commit is contained in:
Manuel 2023-04-07 08:32:00 +02:00
commit 297e6bfaf9
Signed by: Manuel
GPG key ID: 4085037435E1F07A
5 changed files with 94 additions and 0 deletions

14
base/Dockerfile.alpine Normal file
View file

@ -0,0 +1,14 @@
# This is the dockerfile for generating base images for Alpine
# contains the minimal dependencies needed for V to run
FROM alpine:latest
WORKDIR /opt/vlang
ENV VVV /opt/vlang
ENV PATH /opt/vlang:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN mkdir -p /opt/vlang && ln -s /opt/vlang/v /usr/bin/v
RUN apk update && \
# Default base depenencies
apk add --no-cache openssl-dev sqlite-dev