We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7217b3c commit c10fa44Copy full SHA for c10fa44
Dockerfile
@@ -1,14 +1,12 @@
1
-FROM node:latest
+FROM node:25-alpine
2
+RUN apk add --no-cache git
3
+RUN apk add --no-cache openssl
4
RUN mkdir /src
5
COPY . /src
6
WORKDIR /src
7
RUN npm install
8
ARG viewer
9
ARG fork
-RUN apt-get update
-RUN apt-get install git -q -y
10
-RUN apt-get install sendmail -q -y
11
-RUN git clone https://github.com/${fork:-camicroscope}/camicroscope.git --branch=${viewer:-master}
12
EXPOSE 4010
13
14
CMD node caracal.js
0 commit comments