diff options
author | atanarjuat <atanarjuat@example.com> | 2022-07-29 01:12:44 -0400 |
---|---|---|
committer | atanarjuat <atanarjuat@example.com> | 2022-07-29 01:12:44 -0400 |
commit | daad04f571c8f60500a38a98c87da262baa0361a (patch) | |
tree | e9c41b105becaf66719c7e677c32c2517cb3bdff | |
parent | 81dcc7398b8920c5e00229df0f83e627d1f62684 (diff) |
relax dep on Dockerfile
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | images/obfsvpn/Dockerfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7bb4c10..e525eb0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,7 +45,7 @@ integration-test: image: debian stage: test script: - - apt update -y && apt install -y docker docker.io make + - apt-get -q update && env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends docker docker.io make - make integration tags: - linux diff --git a/images/obfsvpn/Dockerfile b/images/obfsvpn/Dockerfile index 9a779a3..cea45d0 100644 --- a/images/obfsvpn/Dockerfile +++ b/images/obfsvpn/Dockerfile @@ -6,7 +6,7 @@ WORKDIR ${SOURCE_PATH} RUN cd server && make build && cp server /obfsvpn-server -FROM alpine:3.14.1 +FROM alpine:3 ENV APP_NAME Dockovpn ENV APP_INSTALL_PATH /opt/${APP_NAME} |