Skip to content

Commit ea15338

Browse files
committed
chore: fixed linting errors on Dockerfile
1 parent a5373d3 commit ea15338

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM node:22-slim AS builder
22

3+
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
4+
35
ARG USERNAME=gemini
46
ARG UID=1000
57
ARG GID=1000
@@ -11,6 +13,7 @@ RUN sed -i "/^[^:]*:x:${GID}:/d" /etc/group \
1113
&& echo "${USERNAME}:x:${GID}:" >> /etc/group \
1214
&& mkdir -p /home/${USERNAME}
1315

16+
# hadolint ignore=DL3008
1417
RUN apt-get update && apt-get install -y --no-install-recommends \
1518
ca-certificates \
1619
git \

0 commit comments

Comments
 (0)