Skip to content

mk02 - Include remote file and specific lines

Source

Partial WSL Building Dockerfile
#The base image
FROM ubuntu:20.04

ENV WSL_USER="wsluser"

# full update
RUN apt update && apt upgrade -y && apt dist-upgrade -y && apt autoclean -y \
    && rm -rf /var/lib/apt/lists/*

# Install required applications
RUN apt-get update \
    && apt-get -y install --no-install-recommends apt-transport-https apt-utils dialog 2>&1 \
    && rm -rf /var/lib/apt/lists/*
Propose changes to this page