mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-12-16 14:33:02 +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
|