Skip to content

Commit 2d75cb6

Browse files
Merge pull request #120 from restackio/fixDockerfiles
Dockerfile fix remove non existent command
2 parents be07853 + 81f0b4c commit 2d75cb6

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

audio_transcript/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Expose port 80
2020
EXPOSE 80

defense_quickstart_audio_transcription_translation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Copy Nginx configuration
2020
COPY nginx.conf /etc/nginx/nginx.conf

defense_quickstart_denoise/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Copy Nginx configuration
2020
COPY nginx.conf /etc/nginx/nginx.conf

defense_quickstart_news_scraper_summarizer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ENV PIP_DEFAULT_TIMEOUT=100
1818
ENV PIP_INDEX_URL=https://pypi.org/simple
1919

2020
# Install dependencies
21-
RUN poetry install --no-dev --no-interaction --no-ansi
21+
RUN poetry install --no-interaction --no-ansi
2222

2323
# Copy Nginx configuration
2424
COPY nginx.conf /etc/nginx/nginx.conf

fastapi_togetherai_llama/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Copy Nginx configuration
2020
COPY nginx.conf /etc/nginx/nginx.conf

llama_quickstart/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Copy Nginx configuration
2020
COPY nginx.conf /etc/nginx/nginx.conf

openai_greet/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Expose port 80
2020
EXPOSE 80

production_demo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Expose port 80
2020
EXPOSE 80

quickstart/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN poetry config virtualenvs.create false
1515

1616
# Install dependencies
17-
RUN poetry install --no-dev --no-interaction --no-ansi
17+
RUN poetry install --no-interaction --no-ansi
1818

1919
# Expose port 80
2020
EXPOSE 80

0 commit comments

Comments
 (0)