Add container for server work
This commit is contained in:
committed by
=Michael Hohn
parent
c6ebfcc4c4
commit
776b980d3b
14
cmd/server/Dockerfile
Normal file
14
cmd/server/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user