Skip to content

Commit 8bcbe3b

Browse files
authored
Dependencies updated. (#15)
1 parent ddb4fc0 commit 8bcbe3b

File tree

4 files changed

+651
-556
lines changed

4 files changed

+651
-556
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
FROM python:3.9-alpine3.18 AS builder
1+
FROM python:3.10-alpine3.18 AS builder
22

33
RUN apk add --no-cache cargo gcc build-base
44
WORKDIR /app
55
COPY requirements.txt /app/requirements.txt
66
RUN pip install -r requirements.txt
77

8-
FROM python:3.9-alpine3.18
8+
FROM python:3.10-alpine3.18
99

1010
LABEL org.label-schema.schema-version = "1.0"
1111
LABEL org.label-schema.name = "NotifyMe"
1212
LABEL org.label-schema.vendor = "[email protected]"
1313
LABEL org.label-schema.vcs-url = "https://github.com/s-nagaev/notifyme"
1414

15-
COPY --from=builder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
15+
COPY --from=builder /usr/local/lib/python3.10/site-packages /usr/local/lib/python3.10/site-packages
1616
COPY --from=builder /usr/local/bin /usr/local/bin
1717

1818
WORKDIR /app

0 commit comments

Comments
 (0)