File tree 2 files changed +4
-24
lines changed
2 files changed +4
-24
lines changed Original file line number Diff line number Diff line change 1
- FROM debian:bullseye-20220125-slim
1
+ FROM ubuntu:focal-20220113
2
2
3
- ENV SAMBA_VERSION="2:4.13.13+ dfsg-1~deb11u2 " \
4
- IPROUTE2_VERSION="5.10 .0-4 "
3
+ ENV SAMBA_VERSION="2:4.13.17~ dfsg-0ubuntu0.21.04.1 " \
4
+ IPROUTE2_VERSION="5.5 .0-1ubuntu1 "
5
5
6
6
ENV BACKUPDIR=/backups
7
7
VOLUME /backups
@@ -21,4 +21,4 @@ EXPOSE 445/tcp
21
21
ADD entrypoint /entrypoint
22
22
RUN chmod 0755 /entrypoint
23
23
24
- ENTRYPOINT ["/entrypoint" ]
24
+ ENTRYPOINT ["/entrypoint" ]
Original file line number Diff line number Diff line change 1
1
require 'spec_helper'
2
2
3
- # Define packages
4
- packages = {
5
- samba : {
6
- version : '2:4.13.13+dfsg-1~deb11u2'
7
- } ,
8
- 'samba-vfs-modules' : {
9
- version : '2:4.13.13+dfsg-1~deb11u2'
10
- }
11
- }
12
-
13
3
def compose
14
4
@compose ||= Docker ::Compose . new
15
5
end
@@ -32,16 +22,6 @@ def compose
32
22
compose . rm ( force : true )
33
23
end
34
24
35
- describe file ( '/etc/os-release' ) do
36
- its ( :content ) { is_expected . to match ( %r{bullseye} ) }
37
- end
38
-
39
- packages . each do |name , details |
40
- describe package ( name ) do
41
- it { should be_installed . with_version ( details [ :version ] ) }
42
- end
43
- end
44
-
45
25
describe file ( '/entrypoint' ) do
46
26
it { should exist }
47
27
it { should be_file }
You can’t perform that action at this time.
0 commit comments