Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
SeoulSKY committed Mar 13, 2024
1 parent 62b1b55 commit 5529a1d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sorusora-ai/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ node_modules
.idea
.vscode
*.log
src
dist
2 changes: 1 addition & 1 deletion sorusora-ai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ WORKDIR /app

COPY package.json .

RUN npm install --omit=dev
RUN npm install

COPY . .

Expand Down
8 changes: 5 additions & 3 deletions sorusora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ ENV DOCKER 1
RUN apt-get update && \
apt-get install ffmpeg -y --no-install-recommends

COPY . .
COPY requirements.txt .

RUN pip install -r requirements.txt \
&& pip install typing-extensions

RUN pip install -r requirements.txt && \
pip install typing-extensions
COPY . .

CMD ["python", "main.py"]

0 comments on commit 5529a1d

Please sign in to comment.