Files
test-app/Dockerfile
2025-07-03 20:08:27 -05:00

12 lines
207 B
Docker

FROM ubuntu:latest AS builder
WORKDIR /src
RUN apt update -y && apt install -y gcc
COPY main.c main.c
RUN gcc -o main main.c
FROM ubuntu:latest
WORKDIR /
COPY --from=builder /src/main /usr/local/bin/main