소스 검색

modified docker file

tomoya 2 년 전
부모
커밋
ea1e8bee75
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      backend/backend.dockerfile

+ 2 - 2
backend/backend.dockerfile

@@ -2,8 +2,8 @@ FROM tiangolo/uvicorn-gunicorn:python3.10
 
 WORKDIR /app/
 
-RUN atp update
-RUN atp-get install -y sshpass
+RUN apt-get update
+RUN apt-get install -y sshpass
 
 # Install Poetry
 RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python3 && \