Skip to content

Commit

Permalink
dockerfile update
Browse files Browse the repository at this point in the history
  • Loading branch information
HershelT committed Jan 7, 2024
1 parent 9051ec5 commit 0cadcb0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
FROM python:latest

# Install necessary packages for X11
# RUN apt-get update && apt-get install -y \
# x11-apps \
# && rm -rf /var/lib/apt/lists/*

WORKDIR C:\Users\hersh\Downloads\Conversational_Analysis_The_Game-main
COPY . .
ADD requirements.txt .
Expand All @@ -13,6 +19,8 @@ ADD itemsList.py .
ADD monsterList.py .
ADD storyAdventure.py .

# Set the DISPLAY environment variable
# ENV DISPLAY host.docker.internal:0.0

RUN pip install -r requirements.txt
CMD [ "python", "./adventureGame.py" ]

0 comments on commit 0cadcb0

Please sign in to comment.