Initial commit
This commit is contained in:
commit
297e6bfaf9
5 changed files with 94 additions and 0 deletions
14
base/Dockerfile.alpine
Normal file
14
base/Dockerfile.alpine
Normal 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
|
||||
Reference in a new issue