diff --git a/Dockerfile b/Dockerfile index 623db9c..5ea32db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ -FROM node:20-alpine -RUN apk add --no-cache git -RUN apk add --no-cache openssl +FROM node:20 +RUN apt-get install -y git RUN mkdir /src COPY . /src WORKDIR /src @@ -8,9 +7,4 @@ RUN npm install RUN git clone https://github.com/camicroscope/camicroscope.git --branch=seer/nci-dccps-srp EXPOSE 8010 -RUN chgrp -R 0 /src && \ - chmod -R g+rwX /src - -USER 1001 - CMD node caracal.js