From 7204d25c614ae5d01d9ee0d0df97c743e143fa67 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Fri, 11 Jul 2025 11:06:10 +0200 Subject: [PATCH] Fix docker syntax error on Github action Signed-off-by: Bryan Frimin --- Dockerfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index a73b6bcb6..d0810f800 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,23 +1,16 @@ -# syntax=docker/dockerfile:1 FROM ubuntu:24.04 LABEL org.opencontainers.image.source="https://github.com/getprobo/probo" LABEL org.opencontainers.image.licenses="MIT" LABEL org.opencontainers.image.vendor="Probo Inc" -WORKDIR /app - -# Install dependencies and create user RUN useradd -m probo && \ apt-get update && \ apt-get upgrade -y && \ apt-get install -y ca-certificates && \ rm -rf /var/lib/apt/lists/* -# Copy the architecture-specific pre-built binary from GoReleaser COPY probod /usr/local/bin/probod - -# Ensure the binary is executable RUN chmod +x /usr/local/bin/probod USER probo