testeranto 0.79.23 → 0.79.25
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/TaskMan1.Dockerfile +3 -1
- package/package.json +1 -1
package/TaskMan1.Dockerfile
CHANGED
|
@@ -11,13 +11,15 @@ RUN apt-get update && \
|
|
|
11
11
|
RUN yarn global add node-gyp
|
|
12
12
|
|
|
13
13
|
RUN mkdir -p /usr/src/app
|
|
14
|
+
RUN mkdir -p /usr/src/app/docs
|
|
14
15
|
WORKDIR /usr/src/app
|
|
15
16
|
COPY package.json /usr/src/app
|
|
16
17
|
RUN yarn install
|
|
17
18
|
COPY ./src/ /usr/src/app/src
|
|
18
19
|
COPY ./subPackages/ /usr/src/app/subPackages
|
|
19
20
|
COPY ./testeranto.mts /usr/src/app/testeranto.mts
|
|
20
|
-
COPY ./
|
|
21
|
+
COPY ./features.test.mts /usr/src/app/features.test.mts
|
|
22
|
+
|
|
21
23
|
RUN yarn testeranto-esbuild
|
|
22
24
|
# # COPY ./testeranto.json /usr/src/app/testeranto.json
|
|
23
25
|
# # COPY prebuild.sh /usr/src/app
|