Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +13 -23
Dockerfile
CHANGED
@@ -1,28 +1,18 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
|
4 |
-
|
|
|
5 |
|
6 |
-
|
|
|
|
|
7 |
|
8 |
-
|
|
|
9 |
|
10 |
-
|
|
|
11 |
|
12 |
-
#
|
13 |
-
|
14 |
-
|
15 |
-
# Switch to the "user" user
|
16 |
-
USER user
|
17 |
-
|
18 |
-
# Set home to the user's home directory
|
19 |
-
ENV HOME=/home/user \
|
20 |
-
PATH=/home/user/.local/bin:$PATH
|
21 |
-
|
22 |
-
# Set the working directory to the user's home directory
|
23 |
-
WORKDIR $HOME/app
|
24 |
-
|
25 |
-
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
26 |
-
COPY --chown=user . $HOME/app
|
27 |
-
|
28 |
-
CMD ["python", "main.py"]
|
|
|
1 |
+
# Use the Inno Setup Docker image
|
2 |
+
FROM amake/innosetup
|
3 |
|
4 |
+
# Set the working directory
|
5 |
+
WORKDIR /app
|
6 |
|
7 |
+
# Copy your main.py and any other necessary files
|
8 |
+
COPY main.py .
|
9 |
+
COPY requirements.txt .
|
10 |
|
11 |
+
# Install Flask and other Python dependencies
|
12 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
+
# Expose the necessary port
|
15 |
+
EXPOSE 7860
|
16 |
|
17 |
+
# Command to run your Flask app
|
18 |
+
CMD ["python", "main.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|