File: Dockerfile

package info (click to toggle)
fdm-materials 5.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,492 kB
  • sloc: sh: 320; python: 201; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
FROM registry.hub.docker.com/library/debian:buster-slim

LABEL Maintainer="software-embedded-platform@ultimaker.com" \
      Comment="Ultimaker update-tools filesystem"

RUN apt-get update && apt-get -y install cmake make python3 python3-pip git

COPY docker_env/buildenv_check.sh buildenv_check.sh

COPY fdm_requirements.txt fdm_requirements.txt

RUN pip3 install -r fdm_requirements.txt