12 lines
207 B
Docker
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
|
|
|