diff --git a/Dockerfile.mac_chip b/Dockerfile.mac_chip deleted file mode 100644 index 6723a39..0000000 --- a/Dockerfile.mac_chip +++ /dev/null @@ -1,25 +0,0 @@ -# Use this Dockerfile if you are using a Mac with an Apple chip - -FROM python:3.12.3-alpine - -WORKDIR /usr/app - -RUN apk add --update --no-cache --virtual .tmp-build-deps \ - gcc libc-dev linux-headers postgresql-dev \ - && apk add libffi-dev - -RUN pip install poetry - -COPY poetry.lock pyproject.toml alembic.ini ./ - -RUN poetry config virtualenvs.create false -RUN poetry install --no-root - -COPY ./src ./src -COPY ./db_revisions ./db_revisions - -WORKDIR /usr/app/src - -EXPOSE 8888 - -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8888"] \ No newline at end of file