Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fts-rest-flask
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
File Transfer Service
fts-rest-flask
Merge requests
!72
Resolve
FTS-1678
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
FTS-1678
FTS-1678
into
master
Overview
0
Commits
5
Pipelines
1
Changes
4
Merged
Carles Garcia Cabot
requested to merge
FTS-1678
into
master
4 years ago
Overview
0
Commits
5
Pipelines
1
Changes
4
Expand
Closes
FTS-1678
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
081a4844
5 commits,
4 years ago
4 files
+
40
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci/Dockerfile-rpm
0 → 100644
+
22
−
0
Options
FROM centos:7
RUN yum-config-manager --enable centos-sclo-rh && \
yum clean all
RUN yum-config-manager --add-repo http://fts-repo.web.cern.ch/fts-repo/testing/el7/x86_64/ && \
yum clean all
RUN yum install --nogpgcheck epel-release centos-release-scl -y && \
yum clean all
RUN yum install --nogpgcheck fts-rest-server fts-rest-client -y && \
yum clean all
RUN yum install --nogpgcheck python3 python36-pytest git python3-devel openssl-devel swig gcc gcc-c++ make mysql-devel mariadb \
-y && yum clean all
RUN useradd --create-home ci
# create directory for logs
RUN chown ci /var/log/fts3rest
WORKDIR /home/ci
USER ci
Loading