Skip to content
Snippets Groups Projects
Commit ee28f4b2 authored by Hyunseok_Sang's avatar Hyunseok_Sang
Browse files

dokcerfile 삭제

parent 94f93a8d
No related branches found
No related tags found
No related merge requests found
# 기본 이미지 설정
FROM python:3.9-slim-buster
# 작업 디렉토리 설정
WORKDIR /app
# 의존성 설치
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
# 소스코드 복사
COPY . .
WORKDIR /app/src
# Flask 명령으로 앱 실행
CMD [ "python", "-m" , "app", "run", "--host=0.0.0.0"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment