mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
10 lines
131 B
Docker
10 lines
131 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && apt-get upgrade
|
|
|
|
RUN useradd -m matt
|
|
USER matt
|
|
WORKDIR /home/matt
|
|
|
|
# TODO everything else
|