Newer
Older
dotfiles / .config / lite-xl / plugins / language_containerfile / Containerfile
@Edoko Edoko on 27 May 206 bytes initial commit
# Containerfile/Dockerfile
ARG UBUNTU_VERSION=20.04

FROM docker.io/library/ubuntu:${UBUNTU_VERSION} as build

RUN apt update && apt upgrade -y

WORKDIR /opt

ENTRYPOINT ["/bin/bash"]
CMD ["-i", "--login"]