如何在 Gitlab CI 中使用 Dockerfile [英] How to use Dockerfile in Gitlab CI

查看:20
本文介绍了如何在 Gitlab CI 中使用 Dockerfile的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的 node/react 应用程序中使用 gitlab-ci,我正在尝试使用 phusion/passenger-nodejs 作为基础 docker 映像

Using gitlab-ci for my node/react app, I'm trying to use phusion/passenger-nodejs as the base docker image

我可以在 .gitlab-ci.yml 中轻松指定:

I can specify this easily in .gitlab-ci.yml:

image: phusion/passenger-nodejs:latest

variables:
  HOME: /root

cache:
  paths:
  - node_modules/

stages:
  - build
  - test
  - deploy

set_environment:
  stage: build
  script:
    - npm install
  tags:
  - docker

test_node:
  stage: test
  script:
    - npm install
    - npm test
  tags:
    - docker

但是,Phusion Passenger 希望您进行配置更改,例如python支持,在Dockerfile中使用他们特殊的init进程等.

However, Phusion Passenger expects you to make configuration changes, e.g. python support, using their special init process, etc. in the Dockerfile.

#FROM phusion/passenger-ruby24:<VERSION>
#FROM phusion/passenger-jruby91:<VERSION>
FROM phusion/passenger-nodejs:<VERSION>
#FROM phusion/passenger-customizable:<VERSION>

# Set correct environment variables.
ENV HOME /root

# Use baseimage-docker's init process.
CMD ["/sbin/my_init"]

# If you're using the 'customizable' variant, you need to explicitly opt-in
# for features. 
#
# N.B. these images are based on https://github.com/phusion/baseimage-docker, 
# so anything it provides is also automatically on board in the images below 
# (e.g. older versions of Ruby, Node, Python).  
# 
# Uncomment the features you want:
#
#   Ruby support
#RUN /pd_build/ruby-2.0.*.sh
#RUN /pd_build/ruby-2.1.*.sh
#RUN /pd_build/ruby-2.2.*.sh
#RUN /pd_build/ruby-2.3.*.sh
#RUN /pd_build/ruby-2.4.*.sh
#RUN /pd_build/jruby-9.1.*.sh
#   Python support.
RUN /pd_build/python.sh
#   Node.js and Meteor standalone support.
#   (not needed if you already have the above Ruby support)
RUN /pd_build/nodejs.sh

# ...put your own build instructions here...

# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

有没有办法在 gitlab-ci 中使用 Dockerfile?除了 apt-get install 和添加 shell 脚本之外,还有什么好的解决方法吗?

Is there a way to use a Dockerfile with gitlab-ci? Is there a good work around other than apt-get install and adding shell scripts?

推荐答案

是的,创建第二个 Gitlab 存储库,将 Dockerfile 放入其中.在其中添加一个带有脚本命令的 gitlab-ci.yml 文件,用于构建修改后的映像并将其推送到您的私有注册表或 Gitlab 嵌入式 Docker 注册表,例如:

Yes, create a second Gitlab repository where you place your Dockerfile in. There you add a gitlab-ci.yml file with a script command that builds you modified image and push it to your private registry or the Gitlab embedded Docker registry, eg:

脚本:码头工人建造.-t http://myregistry:5000/mymodified 图像docker push http://myregistry:5000/mymodified

在您的其他 Gitlab 存储库中,相应地更改 image: 行:

Inside your other Gitlab repository, change the image: line accordingly:

图片:http://myregistry:5000/mymodified

可以在此处找到有关 Gitlab 嵌入式 Docker 注册表的信息 -> 此处

Information on the Gitlab embedded Docker registry can be found here -> here

这篇关于如何在 Gitlab CI 中使用 Dockerfile的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆