forked from determined-ai/determined
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (18 loc) · 732 Bytes
/
Dockerfile
File metadata and controls
21 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ubuntu:23.04
MAINTAINER Determined AI <hello@determined.ai>
RUN apt-get update -yq \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
unattended-upgrades \
&& unattended-upgrade \
&& apt-get remove -y unattended-upgrades \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
COPY packaging/master.yaml /etc/determined/master.yaml
COPY packaging/LICENSE /usr/share/doc/determined-master/copyright
COPY build /usr/share/determined/master
COPY static /usr/share/determined/master/static
COPY determined-gotmpl /usr/bin/determined-gotmpl
COPY determined-master /usr/bin/determined-master
EXPOSE 8080
ENTRYPOINT ["/usr/bin/determined-master"]