Skip to content

Commit

Permalink
Fix docker case mismatch warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fibbo authored and Knapock committed Nov 28, 2024
1 parent 7b0486a commit d83ec14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ RUN chmod +x download_and_unpack_labone.sh \
&& ./download_and_unpack_labone.sh


FROM ubuntu:22.04 as labone_base
FROM ubuntu:22.04 AS labone_base

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


FROM labone_base as labone_dataserver
FROM labone_base AS labone_dataserver

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


FROM labone_base as labone_webserver
FROM labone_base AS labone_webserver

COPY --from=builder LabOneLinux*/WebServer ./labone/WebServer/
COPY --from=builder LabOneLinux*/Documentation ./labone/Documentation/
EXPOSE 8006
ENTRYPOINT ["/labone/WebServer/ziWebServer"]


FROM labone_webserver as labone_full
FROM labone_webserver AS labone_full

RUN apt-get update \
&& apt-get install -y curl python3-pip \
Expand Down

0 comments on commit d83ec14

Please sign in to comment.