docker-react 0.1.0-modernization-hotfix.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +3 -2
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
FROM node:24.11.1 as node
|
|
2
2
|
|
|
3
|
-
FROM nginx
|
|
3
|
+
FROM nginx:1.29.3
|
|
4
4
|
ARG DOCKER_REACT_VERSION
|
|
5
5
|
|
|
6
6
|
# Grab and link the node binaries from the node image.
|
|
@@ -20,4 +20,5 @@ RUN npm install -g docker-react@"${DOCKER_REACT_VERSION}"
|
|
|
20
20
|
COPY ./node_modules ./node_modules
|
|
21
21
|
|
|
22
22
|
# Prepare startup script
|
|
23
|
-
COPY ./docker-react-entrypoint.sh /docker-entrypoint.d
|
|
23
|
+
COPY ./docker-react-entrypoint.sh /docker-entrypoint.d/
|
|
24
|
+
RUN chmod +x /docker-entrypoint.d/docker-react-entrypoint.sh
|
package/package.json
CHANGED