Skip to content

Commit d83ec14

Browse files
fibboKnapock
authored andcommitted
Fix docker case mismatch warnings
1 parent 7b0486a commit d83ec14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ RUN chmod +x download_and_unpack_labone.sh \
1414
&& ./download_and_unpack_labone.sh
1515

1616

17-
FROM ubuntu:22.04 as labone_base
17+
FROM ubuntu:22.04 AS labone_base
1818

1919
COPY --from=builder LabOneLinux*/DataServer ./labone/DataServer/
2020
COPY --from=builder LabOneLinux*/Firmware ./labone/Firmware/
2121

2222

23-
FROM labone_base as labone_dataserver
23+
FROM labone_base AS labone_dataserver
2424

2525
EXPOSE 8001 8003 8004 41000-41100
2626
ENTRYPOINT ["/labone/DataServer/ziDataServer"]
2727

2828

29-
FROM labone_base as labone_webserver
29+
FROM labone_base AS labone_webserver
3030

3131
COPY --from=builder LabOneLinux*/WebServer ./labone/WebServer/
3232
COPY --from=builder LabOneLinux*/Documentation ./labone/Documentation/
3333
EXPOSE 8006
3434
ENTRYPOINT ["/labone/WebServer/ziWebServer"]
3535

3636

37-
FROM labone_webserver as labone_full
37+
FROM labone_webserver AS labone_full
3838

3939
RUN apt-get update \
4040
&& apt-get install -y curl python3-pip \

0 commit comments

Comments
 (0)