Skip to content

Commit

Permalink
Merge pull request #473 from vapor-ware/vio-3007-dockerfile
Browse files Browse the repository at this point in the history
chore: [VIO-3007] Switch Dockerfile to official Python base
  • Loading branch information
AdamIsrael committed Jul 5, 2023
2 parents d011116 + 3910b7b commit ff6f496
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 ff6f496

Please sign in to comment.