Docker fix

This commit is contained in:
Tomas Srnka
2019-03-19 10:32:53 +01:00
parent b2747c0a92
commit c395db8857
4 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
RUN mkdir -p /var/run/memcached
RUN chown memcache:memcache /var/run/memcached
COPY host.conf /etc/host.conf
COPY docker/host.conf /etc/host.conf
RUN set -eux;\
cd /usr/src; \
@@ -28,5 +28,5 @@ RUN set -eux;\
RUN echo ""
COPY start.sh /
COPY docker/start.sh /
CMD ["/start.sh"]

View File

@@ -1,6 +1,6 @@
steps:
- name: 'gcr.io/cloud-builders/docker'
args: [ 'build', '-t', 'gcr.io/pecl-memcache/php-73', 'docker/7.3/' ]
args: [ 'build', '-t', 'gcr.io/pecl-memcache/php-73', '.' ]
- name: 'gcr.io/cloud-builders/docker'
args: ['run', 'gcr.io/pecl-memcache/php-73']
images: