We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89922eb commit dc6e34bCopy full SHA for dc6e34b
1 file changed
Dockerfile
@@ -8,7 +8,6 @@ RUN apt update -y && apt install -y git build-essential tree
8
RUN git clone https://github.com/SkyTheCodeMaster/upc-api.git /app/upc-api
9
10
# Copy the current directory into the cloned repo
11
-COPY . /app/upc-api/
12
13
# Install requirements
14
RUN pip install --upgrade pip
@@ -17,6 +16,8 @@ RUN pip install --no-cache-dir -r ./upc-api/src/requirements.txt
17
16
# Verify the contents of the directory
18
RUN ls -R ./upc-api
19
+COPY . .
20
+
21
# Run the main script
22
#CMD ["python", "/app/upc-api/src/main.py"]
23
CMD ["tree", "/app/"]
0 commit comments