1- FROM golang:1.17.8 -alpine as base
1+ FROM golang:1.18.10 -alpine as base
22
33# ###############################################################################
44#
5- # Copyright (C) 2019-2022 Vanessa Sochat.
5+ # Copyright (C) 2019-2023 Vanessa Sochat.
66#
77# This program is free software: you can redistribute it and/or modify it
88# under the terms of the GNU Affero General Public License as published by
@@ -24,14 +24,14 @@ COPY --from=base /go /go
2424COPY --from=base /usr/local/go /usr/local/go
2525ENV GOPATH /go
2626ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
27- ENV GOLANG_VERSION 1.17.8
27+ ENV GOLANG_VERSION 1.18.10
2828
2929RUN apk update && \
3030 apk add --virtual automake build-base linux-headers libffi-dev
3131RUN apk add --no-cache bash git openssh gcc squashfs-tools sudo libtool gawk ca-certificates libseccomp libseccomp-dev
3232RUN apk add --no-cache linux-headers build-base openssl-dev util-linux util-linux-dev python rsync cryptsetup glib-dev
3333
34- ENV SINGULARITY_VERSION 3.10.5
34+ ENV SINGULARITY_VERSION 3.11.0
3535RUN mkdir -p /usr/local/var/singularity/mnt && \
3636 mkdir -p $GOPATH/src/github.com/sylabs && \
3737 cd $GOPATH/src/github.com/sylabs && \
@@ -56,3 +56,4 @@ ADD addLabel.py /addLabel.py
5656ADD scripts /scripts
5757RUN chmod a+x docker2singularity.sh
5858ENTRYPOINT ["docker-entrypoint.sh" , "/docker2singularity.sh" ]
59+
0 commit comments