Sean-Case commited on
Commit
d99f440
1 Parent(s): 4ee3470

Added small line to dockerfile start. Added dockerignore file for local builds

Browse files
Files changed (2) hide show
  1. .dockerignore +27 -0
  2. Dockerfile +1 -1
.dockerignore ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.csv
2
+ *.pyc
3
+ *.cpython-311.pyc
4
+ *.cpython-310.pyc
5
+ *.bat
6
+ *.json
7
+ *.xlsx
8
+ *.parquet
9
+ *.json
10
+ *.bat
11
+ *.pkl
12
+ *.spec
13
+ *.ipynb
14
+ *.npy
15
+ *.npz
16
+ *.pkl
17
+ *.pkl.gz
18
+ *.pem
19
+ docs/*
20
+ build/*
21
+ dist/*
22
+ __pycache__/*
23
+ db/*
24
+ experiments/*
25
+ model/*
26
+ build_deps/*
27
+ build_deps_old/*
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM public.ecr.aws/docker/library/python:3.10.13-slim
2
 
3
  WORKDIR /src
4
 
 
1
+ FROM public.ecr.aws/docker/library/python:3.10.13-slim as build
2
 
3
  WORKDIR /src
4