Skip to content

Commit

Permalink
chore: [VIO-3007] Switch Dockerfile to official Python base
Browse files Browse the repository at this point in the history
Updates the Dockerfile to use `library/python` instead of the `vaporio`
image.
  • Loading branch information
AdamIsrael committed Jul 3, 2023
1 parent d011116 commit 3910b7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# BUILDER STAGE
#
FROM docker.io/vaporio/python:3.9 as builder
FROM docker.io/library/python:3.9 as builder

RUN pip install --disable-pip-version-check poetry

Expand All @@ -20,7 +20,7 @@ RUN mkdir packages \
#
# RELEASE STAGE
#
FROM docker.io/vaporio/python:3.9-slim
FROM docker.io/library/python:3.9-slim

LABEL org.opencontainers.image.title="Synse Server" \
org.opencontainers.image.source="https://github.com/vapor-ware/synse-server" \
Expand Down

0 comments on commit 3910b7b

Please sign in to comment.