Skip to content

Commit

Permalink
update to latest epics base
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Oct 11, 2023
1 parent c45b527 commit caeced8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

##### shared environment stage #################################################
ARG REGISTRY=ghcr.io/epics-containers
ARG EPICS_VERSION=7.0.5r3.0
ARG EPICS_VERSION=7.0.7ec2

FROM ${REGISTRY}/epics-base:${EPICS_VERSION} AS environment
FROM ${REGISTRY}/epics-base-linux-developer:${EPICS_VERSION} AS environment

# environment
ENV PHOEBUS_DIR=/phoebus
Expand All @@ -33,8 +33,6 @@ RUN apt-get update && apt-get upgrade -y && \
locales \
maven \
openjfx \
python3-pip \
python3.8-minimal \
busybox-static \
ssh \
sudo \
Expand All @@ -52,11 +50,11 @@ RUN locale-gen en_US.UTF-8 && \
RUN bash -c "ln -s phoebus-product/target/product-*-SNAPSHOT.jar product.jar"
ENTRYPOINT ["java", "-jar", "/phoebus/product.jar", "-server", "4918"]

USER ${USERNAME}
# USER ${USERNAME}

##### runtime stage ############################################################

FROM environment AS runtime
# FROM environment AS runtime

# TODO copy build output

Expand Down

0 comments on commit caeced8

Please sign in to comment.