Skip to content

Commit

Permalink
temp Dockerfile change
Browse files Browse the repository at this point in the history
  • Loading branch information
ivozilkenat authored Apr 2, 2024
1 parent 6343c96 commit 035ddb3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
FROM python:3.10-slim

# Set the working directory in the container
WORKDIR /app
# WORKDIR /app

# Copy the backend application's requirements file into the container
COPY . .
# # Copy the backend application's requirements file into the container
# COPY . .

# Install Node.js
RUN apt-get update && apt-get install -y curl gnupg && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs
# # Install Node.js
# RUN apt-get update && apt-get install -y curl gnupg && \
# curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
# apt-get install -y nodejs

RUN python install.py
# RUN python install.py

# Expose the port the backend server listens on
EXPOSE 3000
# # Expose the port the backend server listens on
# EXPOSE 3000

# Expose the port the frontend server listens on
EXPOSE 3001
# # Expose the port the frontend server listens on
# EXPOSE 3001

# Command to run the backend server
# Assuming your backend server is setup to run with a file named 'server.py'
Expand Down

0 comments on commit 035ddb3

Please sign in to comment.