mirror of
https://github.com/Jamesits/pve-fake-subscription
synced 2025-12-18 00:07:56 -05:00
13 lines
290 B
Docker
13 lines
290 B
Docker
FROM docker.io/library/debian:stable-slim AS base
|
|
|
|
ENV FOLDER=/opt/fake-proxmox-subscription
|
|
|
|
WORKDIR /opt/fake-proxmox-subscription
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends build-essential debhelper dpkg-dev
|
|
|
|
COPY . $FOLDER
|
|
|
|
RUN dpkg-buildpackage -us -uc -b
|