From 2e74ac508be3988603cadb73be8c28309559f065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Mej=C3=ADas=20Rodr=C3=ADguez?= Date: Fri, 9 Aug 2019 14:20:09 -0400 Subject: [PATCH] Fix Dockerfile environment variables --- Dockerfile | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4acdd04..69aefe9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,26 @@ FROM alpine:3 -ENV PSU_AUTHENTICATION_PASSWORD="" \ - PSU_AUTH_TOKEN="" \ - PSU_AUTHENTICATION_USER="" \ +ENV PSU_AUTH_TOKEN="" \ PSU_CONFIG="" \ PSU_CONFIG_LIST_KEYS="" \ - PSU_CONNECTION_INSECURE="" \ - PSU_CONNECTION_TIMEOUT="" \ - PSU_CONNECTION_URL="" \ - PSU_DEBUG="" \ + PSU_ENDPOINT_GROUP_LIST_FORMAT="" \ PSU_ENDPOINT_LIST_FORMAT="" \ + PSU_INSECURE="" \ + PSU_LOG_LEVEL="" \ PSU_LOGIN_PRINT="" \ + PSU_PASSWORD="" \ PSU_STACK_DEPLOY_ENDPOINT="" \ PSU_STACK_DEPLOY_ENV_FILE="" \ PSU_STACK_DEPLOY_REPLACE_ENV="" \ PSU_STACK_DEPLOY_STACK_FILE="" \ PSU_STACK_LIST_ENDPOINT="" \ PSU_STACK_LIST_FORMAT="" \ - PSU_STACK_LIST_QUIET="" \ - PSU_STACK_LIST_SWARM="" \ + PSU_STACK_REMOVE_ENDPOINT="" \ PSU_STACK_REMOVE_STRICT="" \ PSU_STATUS_FORMAT="" \ - PSU_VERBOSE="" + PSU_TIMEOUT="" \ + PSU_URL="" \ + PSU_USER="" COPY psu /usr/local/bin/psu