-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# FROM tiangolo/uvicorn-gunicorn-fastapi:python3.11-slim AS stage-1 | ||
FROM python AS stage-1 | ||
FROM python:latest AS stage-1 | ||
|
||
LABEL org.opencontainers.image.source=https://github.com/ak7vv/hamframe | ||
LABEL org.opencontainers.image.authors="Christian AK7VV <[email protected]>" | ||
|
@@ -10,16 +10,7 @@ ENV PYTHONUNBUFFERED=1 | |
|
||
WORKDIR /hamframe | ||
|
||
# RUN apt-get update && \ | ||
# apt-get upgrade --yes && \ | ||
# apt-get autoremove --yes && \ | ||
# rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# RUN apk add gcc python3-dev musl-dev linux-headers | ||
|
||
# RUN apk update && \ | ||
# apk --no-cache add \ | ||
# python3 cmd:pip3 | ||
RUN pip3 install --no-cache-dir --break-system-packages couchbase | ||
|
||
|
||
|
||
|