mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-22 23:59:35 -05:00
* Set up test infrastructure with local registry and custom images. * Updated travis docker version and usage of new test infra. * Made acc tests constantly output test results. * Tmp acc test files are ignored. * Fixed tests with new infra. * Allowing insecure registries for acc tests. Added fallback for v1 registries. * Added private image cleanup after tests. * Refined acc test structure to confirm tf provider standards with make testacc.
6 lines
116 B
Text
6 lines
116 B
Text
FROM node:6.12.3-slim
|
|
EXPOSE 8080
|
|
COPY configs.json .
|
|
COPY secrets.json .
|
|
COPY server_v2.js .
|
|
CMD node server_v2.js
|