Skip to content

Commit c1891cb

Browse files
authored
fix(docker): adduser error (#1160)
1 parent 81d31d2 commit c1891cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

utils/docker/Dockerfile.focal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM ubuntu:focal
22

3+
ARG DEBIAN_FRONTEND=noninteractive
4+
ARG TZ=America/Los_Angeles
35
ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright/java:v%version%-focal"
46

57
# === INSTALL JDK and Maven ===
@@ -22,7 +24,7 @@ RUN apt-get update && \
2224
# Create the pwuser
2325
adduser pwuser
2426

25-
RUN VERSION=3.8.6 && \
27+
RUN VERSION=3.8.7 && \
2628
curl -o - https://dlcdn.apache.org/maven/maven-3/$VERSION/binaries/apache-maven-$VERSION-bin.tar.gz | tar zxfv - -C /opt/ && \
2729
ln -s /opt/apache-maven-$VERSION/bin/mvn /usr/local/bin/
2830

0 commit comments

Comments
 (0)