9 lines
127 B
Docker
9 lines
127 B
Docker
FROM mongo:4.4
|
|
|
|
COPY ./import.sh .
|
|
COPY ./cars.json .
|
|
COPY ./traffic_lights.json .
|
|
|
|
ADD import.sh /docker-entrypoint-initdb.d
|
|
|