Add container for server work

This commit is contained in:
Michael Hohn
2024-05-31 13:26:24 -07:00
committed by =Michael Hohn
parent c6ebfcc4c4
commit 776b980d3b
2 changed files with 38 additions and 3 deletions

14
cmd/server/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Use Ubuntu 22.04 as the base image
FROM arm64v8/ubuntu:22.04
# Set environment variables to non-interactive to avoid prompts during installation
ENV DEBIAN_FRONTEND=noninteractive
# Update the package list
RUN apt-get update && \
apt-get clean
RUN mkdir /mrva
# Set the default command
CMD ["bash"]