@raketa-cloud/admin-starter-template 1.0.1 → 1.0.2
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/.dockerignore +3 -1
- package/Dockerfile +4 -0
- package/bin/docker-build +2 -0
- package/bin/docker-run +3 -0
- package/package.json +1 -1
package/.dockerignore
CHANGED
package/Dockerfile
CHANGED
|
@@ -4,6 +4,10 @@ RUN mkdir -p /app
|
|
|
4
4
|
WORKDIR /app
|
|
5
5
|
|
|
6
6
|
COPY ["./package.json", "./package-lock.json", "./"]
|
|
7
|
+
# The package.json file includes a prepare scripts which relies on the static directory being present
|
|
8
|
+
# The later COPY . ./ will override the files generated from this script, but that is OK since the
|
|
9
|
+
# prepare script was already ran locally and the file changes are commited.
|
|
10
|
+
RUN mkdir ./static
|
|
7
11
|
RUN npm install
|
|
8
12
|
|
|
9
13
|
# Copying source files
|
package/bin/docker-build
CHANGED
package/bin/docker-run
CHANGED