-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from xgaia/7.2.6.1
Update virtuoso to 7.2.6.1 and Alpine to 3.14
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM alpine:3.8 AS builder | ||
FROM alpine:3.14 AS builder | ||
MAINTAINER Xavier Garnier '[email protected]' | ||
|
||
# Environment variables | ||
ENV VIRTUOSO_GIT_URL https://github.com/openlink/virtuoso-opensource.git | ||
ENV VIRTUOSO_DIR /virtuoso-opensource | ||
ENV VIRTUOSO_GIT_VERSION 7.2.5.1 | ||
ENV VIRTUOSO_GIT_VERSION 7.2.6.1 | ||
|
||
COPY patch.diff /patch.diff | ||
|
||
|
@@ -21,7 +21,7 @@ RUN apk add --update git automake autoconf automake libtool bison flex gawk gper | |
|
||
|
||
# Final image | ||
FROM alpine:3.8 | ||
FROM alpine:3.14 | ||
ENV PATH /usr/local/virtuoso-opensource/bin/:$PATH | ||
RUN apk add --no-cache openssl py-pip && \ | ||
pip install crudini && \ | ||
|