mirror of
https://github.com/outbackdingo/deployment.git
synced 2026-03-20 22:41:25 +00:00
8 lines
218 B
Docker
8 lines
218 B
Docker
FROM ubuntu:latest
|
|
LABEL maintainer="Cedric Verstraeten"
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install snapd snap-confine -y
|
|
|
|
# Install microk8s
|
|
RUN snap install microk8s --classic --channel=1.32/stable |