code smell correction

This commit is contained in:
Hyatt 2023-03-24 22:03:17 -05:00
parent 30b211d241
commit 81af2b2cab
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -1,12 +1,12 @@
# Step 1 - Certificate Container # Step 1 - Certificate Container
#### ####
FROM registry.c.test-chamber-13.lan/library/alpine:latest as certHost FROM registry.c.test-chamber-13.lan/library/alpine:latest AS certHost
RUN addgroup -S -g 1000 app && \ RUN addgroup -S -g 1000 app && \
adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app
# Step 2 - Build Container # Step 2 - Build Container
#### ####
FROM registry.c.test-chamber-13.lan/dockerhub/library/golang:alpine as builder FROM registry.c.test-chamber-13.lan/dockerhub/library/golang:alpine AS builder
COPY . /go/src/app COPY . /go/src/app