Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix: remove platform from base image
Browse files Browse the repository at this point in the history
  • Loading branch information
okedeji committed Feb 19, 2024
1 parent d723b43 commit e2748b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile_worker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 golang:1.21-bookworm AS builder
FROM golang:1.21-bookworm AS builder

ADD . /src
WORKDIR /src
Expand All @@ -11,7 +11,7 @@ RUN go mod download && \
make all

###########################
FROM --platform=linux/amd64 python:3.12-slim-bookworm
FROM python:3.12-slim-bookworm
ENV DEBIAN_FRONTEND=noninteractive \
USERNAME=appuser \
APP_PATH=/app
Expand Down

0 comments on commit e2748b6

Please sign in to comment.