We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb0c29 commit 6bf4748Copy full SHA for 6bf4748
Dockerfile
@@ -26,12 +26,10 @@ RUN apt-get update --allow-releaseinfo-change && apt-get install -y --no-install
26
&& apt-get clean \
27
&& rm -rf /var/lib/apt/lists/*
28
29
-# Set working directory
30
-WORKDIR /codecept
31
-
32
# Copy project files
33
-COPY . .
+COPY . /codecept
34
+# Set working directory
35
WORKDIR /tests
36
37
# Install Node.js dependencies as non-root user
@@ -56,4 +54,4 @@ USER pptruser
56
54
57
55
# Set entrypoint and command
58
ENTRYPOINT ["/codecept/docker/entrypoint"]
59
-CMD ["bash", "/codecept/docker/run.sh"]
+CMD ["bash", "/codecept/docker/run.sh"]
0 commit comments