1
0
mirror of https://github.com/smallstep/cli.git synced 2025-04-19 10:42:15 +03:00

Add missing backslash

This commit is contained in:
Herman Slatman 2024-09-24 19:33:52 +02:00
parent c7fbf8555b
commit 6d6af3a1e0
No known key found for this signature in database
GPG Key ID: F4D8A44EA0A75A4F

View File

@ -31,7 +31,7 @@ RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends curl \
&& addgroup --gid ${STEPGID} step \
&& adduser --disabled-password --uid ${STEPUID} --gid ${STEPGID} step
&& adduser --disabled-password --uid ${STEPUID} --gid ${STEPGID} step \
&& chown step:step /home/step
COPY --from=builder /src/bin/step "/usr/local/bin/step"