We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64daeb commit ac9e73aCopy full SHA for ac9e73a
Dockerfile
@@ -20,7 +20,7 @@ RUN apt-get update && apt-get -y --no-install-recommends upgrade && apt-get inst
20
&& rm -rf /var/lib/apt/lists/*
21
22
COPY . .
23
-
+RUN chmod 777 /data/scripts/checkinstall.sh
24
RUN yarn install \
25
--prefer-offline \
26
--frozen-lockfile \
@@ -34,4 +34,4 @@ RUN yarn build
34
35
EXPOSE 3000
36
37
-CMD ["/data/scripts/checkinstall.sh;yarn", "run", "start:prod"]
+ENTRYPOINT ["./entrypoint.sh"]
entrypoint.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+
3
+/data/scripts/checkinstall.sh
4
+yarn run start:prod
5
0 commit comments